        /* Base Settings */
        :root {
            --accent: rgb(221, 0, 255); /* Indigo-500 */
            --bg-dark: #0b0c15; /* Better Stack Dark Navy */
            --text-main: #9c9c9c; /* Gray-100 */
            --text-muted: #6f6f6f; /* Gray-400 */
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: 'TASA Orbiter', sans-serif;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Utilities */
        .tracking-tighter { letter-spacing: -0.04em; }
        .tracking-tight { letter-spacing: -0.02em; }
        .status-container {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            transition-delay: 0.1s;
            width: 100%;
        }

        /* Custom Gradients & Glows */
        .glow-point {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, rgba(0,0,0,0) 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }

        /* Typography Override */
        h1, h2, h3, h4, .font-heading {
            font-family: 'TASA Orbiter', sans-serif;
        }

        /* TASA Font Override */
        .font-tasa {
            font-family: 'TASA Orbiter', sans-serif;
        }

        /* Selection */
        ::selection {
            background: rgba(99, 102, 241, 0.3);
            color: white;
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #0b0c15; }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: #4f46e5; }

        /* Canvas */
   

        /* Animations */
        .fade-in-up {
            animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; /* Spring-ish easing */
            opacity: 0;
            transform: translateY(20px);
        }
        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        .delay-300 { animation-delay: 0.3s; }
        .delay-500 { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Gradient Text */
        .text-gradient {
            background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }


        /* Click Shrink Effect */
        .click-shrink {
            animation: click-shrink 0.3s ease-in-out;
        }

        @keyframes click-shrink {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(0.9);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Vignette Effect */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.6) 100%);
            pointer-events: none;
            z-index: 5;
        }

        /* Mobile Menu Styles */
        @media (max-width: 640px) {
            nav.flex {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(11, 12, 21, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            }

            nav.flex a {
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav.flex a:last-child {
                border-bottom: none;
            }

            /* Make hero image smaller on mobile and add bottom margin */
            .fixed.inset-0 img {
                max-width: 80vw !important;
                max-height: 60vh !important;
                margin-bottom: 8rem;
            }

            /* Ensure main content has proper bottom spacing */
            main.pb-32 {
                padding-bottom: 8rem;
            }
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: 'TASA Orbiter', sans-serif;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

       
        /* Custom Gradients & Glows */
        .glow-point {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, rgba(0,0,0,0) 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }

        /* Typography Override */
        h1, h2, h3, h4, .font-heading {
            font-family: 'TASA Orbiter', sans-serif;
        }

        /* TASA Font Override */
        .font-tasa {
            font-family: 'TASA Orbiter', sans-serif;
        }

        /* Selection */
        ::selection {
            background: rgba(99, 102, 241, 0.3);
            color: white;
        }

     

        /* Animations */
        .fade-in-up {
            animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; /* Spring-ish easing */
            opacity: 0;
            transform: translateY(20px);
        }
        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        .delay-300 { animation-delay: 0.3s; }
        .delay-500 { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Gradient Text */
        .text-gradient {
            background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Click Shrink Effect */
        .click-shrink {
            animation: click-shrink 0.3s ease-in-out;
        }

        @keyframes click-shrink {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(0.9);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }


        /* Vignette Effect */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.6) 100%);
            pointer-events: none;
            z-index: 5;
        }


      

        /* Header bottom margin */
        header {
            margin-bottom: 20px !important;
        }

  
        .thebasslineedition-story {
            font-size: 30px;
            overflow: visible;
            min-width: 100%;
            flex-shrink: 0;
        }

        .thebasslineedition-story img {
            height: 1500px;
            width: auto;
            min-width: 100%;
            display: block;
            object-fit: contain;
        }

        /* Streaming Platforms Section */
        .streaming-platforms-section {
            padding: 2rem 1rem;
            position: relative;
            padding-top: 100px;
        }

        .streaming-platforms-grid {
            width: 100%;
        }

        .streaming-platform-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.5rem;
            background: rgba(11, 12, 21, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 50%;
        }

        .streaming-platform-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        /* Platform-specific hover effects */
        .platform-spotify:hover {
            background: rgba(29, 185, 84, 0.15);
            border-color: rgba(29, 185, 84, 0.5);
            box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
        }

        .platform-apple:hover {
            background: rgba(250, 36, 60, 0.15);
            border-color: rgba(250, 36, 60, 0.5);
            box-shadow: 0 4px 20px rgba(250, 36, 60, 0.3);
        }

        .platform-soundcloud:hover {
            background: rgba(255, 85, 0, 0.15);
            border-color: rgba(255, 85, 0, 0.5);
            box-shadow: 0 4px 20px rgba(255, 85, 0, 0.3);
        }

        .platform-youtube:hover {
            background: rgba(255, 0, 0, 0.15);
            border-color: rgba(255, 0, 0, 0.5);
            box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
        }

        .platform-amazon:hover {
            background: rgba(255, 153, 0, 0.15);
            border-color: rgba(255, 153, 0, 0.5);
            box-shadow: 0 4px 20px rgba(255, 153, 0, 0.3);
        }

        .platform-deezer:hover {
            background: rgba(254, 170, 45, 0.15);
            border-color: rgba(254, 170, 45, 0.5);
            box-shadow: 0 4px 20px rgba(254, 170, 45, 0.3);
        }

        .platform-toneden:hover {
            background: rgba(99, 102, 241, 0.2);
            border-color: rgba(99, 102, 241, 0.5);
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
        }

        .platform-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .platform-spotify:hover .platform-icon-wrapper {
            background: rgba(29, 185, 84, 0.2);
        }

        .platform-apple:hover .platform-icon-wrapper {
            background: rgba(250, 36, 60, 0.2);
        }

        .platform-soundcloud:hover .platform-icon-wrapper {
            background: rgba(255, 85, 0, 0.2);
        }

        .platform-youtube:hover .platform-icon-wrapper {
            background: rgba(255, 0, 0, 0.2);
        }

        .platform-amazon:hover .platform-icon-wrapper {
            background: rgba(255, 153, 0, 0.2);
        }

        .platform-deezer:hover .platform-icon-wrapper {
            background: rgba(254, 170, 45, 0.2);
        }

        .platform-toneden:hover .platform-icon-wrapper {
            background: rgba(99, 102, 241, 0.2);
        }

        .streaming-platform-link:hover .platform-icon-wrapper {
            transform: scale(1.1);
        }

        .streaming-platform-link i {
            color: #9c9c9c;
            transition: color 0.3s ease;
            font-size: 1.5rem;
        }

        /* Platform-specific brand colors */
        .platform-spotify i {
            color: #1DB954;
        }

        .platform-spotify:hover i {
            color: #1ED760;
        }

        .platform-apple i {
            color: #FA243C;
        }

        .platform-apple:hover i {
            color: #FF3B5C;
        }

        .platform-soundcloud i {
            color: #FF5500;
        }

        .platform-soundcloud:hover i {
            color: #FF7700;
        }

        .platform-youtube i {
            color: #FF0000;
        }

        .platform-youtube:hover i {
            color: #FF3333;
        }

        .platform-amazon i {
            color: #FF9900;
        }

        .platform-amazon:hover i {
            color: #FFB84D;
        }

        .platform-deezer i {
            color: #FEAA2D;
        }

        .platform-deezer:hover i {
            color: #FFC04D;
        }

        .platform-toneden i {
            color: #9c9c9c;
        }

        .platform-toneden:hover i {
            color: #a5b4fc;
        }

        .streaming-platform-link:hover i {
            transform: scale(1.1);
        }

        .platform-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: #9c9c9c;
            transition: color 0.3s ease;
        }

        .streaming-platform-link:hover .platform-name {
            color: #ffffff;
        }

        @media (max-width: 640px) {
            .streaming-platform-link {
                min-width: 100px;
                padding: 0.75rem 1rem;
            }

            .platform-icon-wrapper {
                width: 40px;
                height: 40px;
            }

            .platform-name {
                font-size: 0.75rem;
            }
        }